home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / C / SNIP9503.ZIP / HILOBYTE.H < prev    next >
Encoding:
C/C++ Source or Header  |  1994-04-03  |  84 b   |  3 lines

  1. #define LOBYTE(x) ((unsigned char)(x))
  2. #define HIBYTE(x) ((unsigned int)(x) >> 8)
  3.